home *** CD-ROM | disk | FTP | other *** search
- #################################################
- # #
- # Sample Turtle Script (part 1 of 3) #
- # #
- #################################################
- # show screen
- show on
- # clear screen and move cursor near center
- clear
- penup
- setxy 150 100
- pencolor 15
- pendown
- # draw pentagon 10 times
- repeat 10 sample.001
- # pause until key press
- show
- show off
-